CallLogServiceInterface

public interface CallLogServiceInterface

This interface represents the service methods exposed for managing call logs.

Functions

Link copied to clipboard
public abstract void remove(String calllogId)
This method removes the call log and returns true, if the valid id is given, otherwise returns false.
Link copied to clipboard
public abstract void removeAll()
Remove all call logs, if succeeded returns true, otherwise false.
Link copied to clipboard
public abstract List<CallLogEntryInterface> retrieve(int startIndex, int count)
This method returns call logs with beginning the given startIndex to the count size .
Link copied to clipboard
This method returns all call logs.